home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- ECHO . This batch file, along with it's companion
- ECHO . data file will patch the Procomm 2.4 "PRM"
- ECHO . file so as to make Procomm "Think" it has
- ECHO . been run 255 times. Thus,you will no longer
- ECHO . see the Info screen every time you boot it.
- ECHO . You must have the Procomm files, this file,
- ECHO . and it's data file, and a copy of DOS's
- ECHO . Debugging utility "DEBUG.COM" in the direct-
- ECHO . ory you are logged to. If this is the case
- ECHO . then press any key to continue. If ALL of
- ECHO . these files are NOT in the same directory
- ECHO . hit CONTROL-C to abort this batch file, and
- ECHO . perform the copy commands required to get
- ECHO . them together.
- ECHO .
- PAUSE
- CLS
- ECHO .
- ECHO .
- ECHO .
- ECHO .
- ECHO .
- ECHO . This procedure written
- ECHO .
- ECHO . By
- ECHO .
- ECHO . Bob Buckmaster
- ECHO .
- ECHO .
- ECHO .
- ECHO . Sys-Op
- ECHO .
- ECHO . of
- ECHO .
- ECHO . "The U.S.S. Enterprise II"
- ECHO . Bulletin Board System
- ECHO . Montgomery,Al
- ECHO . (205)286-9581
- ECHO .
- ECHO .
- ECHO . Checking to see if all of
- ECHO . the needed files are here...
- IF NOT EXIST PROCOMM.PRM GOTO NO_PRM
- IF NOT EXIST DEBUG.COM GOTO NO_DEBUG
- IF NOT EXIST NOINFO.DAT GOTO NO_INFO
- ECHO .
- ECHO . Patching PROCOMM.PRM...
- DEBUG PROCOMM.PRM<NOINFO.DAT >nul
- ECHO . Done...
- GOTO END
- :NO_PRM
- ECHO . Can NOT locate PROCOMM.PRM!
- ECHO . Aborting!
- GOTO END
- :NO_DEBUG
- ECHO . Can NOT locate DEBUG.COM!
- ECHO . Aborting!
- GOTO END
- :NO_INFO
- ECHO . Can NOT locate NOINFO.DAT!
- ECHO . Aborting!
- GOTO END
- :END